
.left {
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    background-color: #121212;

    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 6px;
    max-width: fit-content;
} 

.left> :nth-child(1) {
    width: 90%;
    justify-content: space-between;
    padding: 20px 15px;
    font-weight: 800;
}

.left> :nth-child(1)>h2 {
    cursor: context-menu;
    font-size: 16px;
}

.left> :nth-child(1)>button {
    padding: 8px 8px;
    background-color: transparent;
    border-radius: 35px;
    transition: transform 100ms ease-in;
}

.left> :nth-child(1)>button:active {
    transform: scale(0.90);
    transform: rotate(90deg);
}

.left> :nth-child(1)>button:hover {
    background-color: #252525;
}

.left> :nth-child(1)>button>img {
    width: 15px;
    filter: invert(0.6);
}

.left> :nth-child(1)>button>img:hover {
    filter: invert(1);
}

/* ---------------------------------------------------------------------------------------------------------------- */

.librarySongs {
    flex: 1;
    width: 100%;
    flex-direction: column;
    gap: 10px;
}

.songDetails {
    width: 95%;
    height: 65px;

    opacity: 0;
    transition: opacity 200ms ease-in , transform 200ms ease-in-out;
    transform: scale(0);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 1px;
    font-weight: 400;

    border-radius: 10px;
}
.visible {
    opacity: 1;
    transform: scale(1);
}

.randomSongImage {
    display: flex;
    justify-content: center;
    align-items: center;


    margin: 0px 10px 0px 10px;
    width: 50px;
    height: 50px;
    border-radius: 25%;
    border: none;
    background-color: #898989;
}

.randomSongImage img {
    cursor: pointer;
    border: none;
    width: 65%;
    transition: transform 50ms linear;
}

.randomSongImage img:hover {
    filter: invert(0.05);
}

.randomSongImage img:active {
    transform: scale(0.90);
    filter: invert(0.30);
}

.details {
    width: 90%;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.details div {
    width: fit-content;
    height: fit-content;
    font-size: 12px;
}

.details> :nth-child(1) {
    font-size: 14px;
}

.details> :nth-child(3) {
    display: flex;
    gap: 10px;
}

.sideBar {
    display: none;
    width: 50px;
}
/* ---------------------------------------------------------------------------------------------------------------- */

.left::-webkit-scrollbar {
    width: 10px;
}

.left::-webkit-scrollbar-track {
    background: none;
}

.left::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #222;
}

.left:hover::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.left::-webkit-scrollbar-thumb:hover {
    background-color: rgba(191, 191, 191, 0.6);
}

.left-footer {
    gap: 10px;
    width: 80%;
    height: fit-content;
    flex-wrap: wrap;
}

.left-footer a {
    text-decoration: none;
}

.left-footer a span {
    color: rgb(163, 163, 163);
    font-size: 11px;
}

.left> :nth-child(3) {
    flex-direction: column;
    gap: 10px;
    margin: 0px 0px 20px 20px;
}

.left> :nth-child(3)> :nth-child(2) {
    text-decoration: none;
    font-size: 12px;
}

.left> :nth-child(3)> :nth-child(2):hover {
    text-decoration: underline;
}

.left> :nth-child(3)> :nth-child(3) {
    margin-top: 20px;
    font-weight: 800;
    padding: 5px 10px;
    gap: 10px;
    border: 1px solid #575757;
    border-radius: 20px;
    transition: transform 100ms ease-in;
}

.left> :nth-child(3)> :nth-child(3):hover {
    border: 1px solid white;
    transform: scale(1.04);
}

.left> :nth-child(3)> :nth-child(3):active {
    transform: scale(0.90);
}

.left> :nth-child(3)> :nth-child(3)>img {
    filter: invert(1);
}